home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / c++advio 2.3 / Advanced i⁄o / c++serv.dr < prev    next >
Encoding:
Text File  |  1997-05-09  |  1.7 KB  |  43 lines  |  [TEXT/ttxt]

  1.         Service C++ functions and classes
  2.  
  3. Makefile        Makefile for making the library
  4. README            What is this all about and how to use it
  5.  
  6. myenv.h            My customary standard environment
  7. myenv.cc        and supporting programs
  8. vmyenv.cc        and its validation code
  9.  
  10. endian_io.h        Read/Write ints of various sizes taking the byte
  11. endian_io.cc          order into account + bit-stream IO
  12. vendian_io.cc        Verification program
  13.  
  14.                 Vocabulary Database Manager
  15. voc.h                   Definition of Vocabulary items, vocabulary
  16. voc.cc                  Implementation of certain functions
  17. voc_io.cc               Dictionary I/O operations
  18. vvoc.cc                 Verification of voc operations
  19.  
  20.         Histogram of an integer-valued distribution
  21. histogram.h        Declaration of the class Histogram
  22. histogram.cc        Compouting the histogram and related operations
  23. vhistogram.cc        Verification of histogram operations
  24.  
  25.         Arithmetic Coding of the sequence of integers
  26. arithm.h        Declaration of the class ArithmCoding
  27. arithm_coding.cc    Encoding/Decoding the input character
  28.              Providing the codec with the probability of the
  29.              current symbol to code
  30. arithm_model.cc        Basics of the symbol source model
  31. arithm_modadapt.h    Adaptive model, uses some apriori initial prob distr
  32. arithm_modadapt.cc    and adjusts it as symbols are processed
  33. arithm_modhist.h    Non-adaptive model, computes the histogram first
  34. arithm_modhist.cc    and then uses it to supply the codec with probabilities
  35. arithm_modadh.h        Adaptive model, uses the histogram to guess the initial
  36. arithm_modadh.cc    prob distr and tailors it as symbols are processed
  37.  
  38. varithm.cc        Verify the arithmetic coding
  39.  
  40.         Portability extensions (for non-gcc compilers)
  41. std.h            Declaration of "standard" functions
  42. builtin.h        Declaration of built-ins like abs() and sqr()
  43.